vnet-create is correct. This is better than throwing IOError, because
IOError's are currently reported as xend communication failures.
Also, fix the IOError handling at the end of the file so we don't get
a stack dump if that path is taken.
Signed-off-by: Dan Smith <danms@us.ibm.com>
def xm_vnet_create(args):
arg_check(args, 1, "vnet-create")
conf = args[0]
+ if not os.access(conf, os.R_OK):
+ print "File not found: %s" % conf
+ sys.exit(1)
+
from xen.xend.XendClient import server
server.xend_vnet_create(conf)
except KeyboardInterrupt:
print "Interrupted."
sys.exit(1)
- except IOError:
+ except IOError, ex:
if os.geteuid() != 0:
err("Most commands need root access. Please try again as root.")
else: